home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7026.txt < prev    next >
Text File  |  1996-03-22  |  903b  |  33 lines

  1. Returns TRUE if the Command key was pressed
  2.  
  3. Command : BOOLEAN;
  4.  
  5. Returns TRUE if the Shift key was pressed.
  6.  
  7. Shift : BOOLEAN;
  8.  
  9. Returns TRUE if the Caps Lock key was pressed.
  10.  
  11. CapsLock : BOOLEAN;
  12.  
  13. Returns TRUE if the Option key was pressed.
  14.  
  15. Option : BOOLEAN;
  16.  
  17. Returns the x, y coordinates of the mouse.  Does not wait for the user to click the mouse.
  18.  
  19. GetMouse(VAR x, y : REAL);
  20.  
  21. Returns TRUE if a non-modifier key has been continually pressed and also returns the ASCII code of the key that was pressed; otherwise it returns FALSE.
  22.  
  23. AutoKey(VAR asciiCode : INTEGER) : BOOLEAN;
  24.  
  25. Returns TRUE if a non-modifier key has been pressed and also returns the ASCII code of the key that was pressed; otherwise it returns FALSE.
  26.  
  27. KeyDown(VAR asciiCode : INTEGER) : BOOLEAN;
  28.  
  29. Returns TRUE if mouse is clicked and also returns the x, y location; otherwise it returns FALSE.
  30.  
  31. MouseDown(VAR x, y : REAL) : BOOLEAN;
  32.  
  33.